Hello world program in c#

73

Hello world program in c# -

using System;

namespace HelloWorld
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Hello World!");
    }
  }
}

Comments

Submit
0 Comments